home *** CD-ROM | disk | FTP | other *** search
- /* PEGGER ARexx Script which shows how to debug ARexx Scripts */
-
- /* Example trace command to use with the ARexx global tracing console */
- /* Open the global tracing console with the ARexx program 'tco' when */
- /* you want to debug a Pre or Post ARexx script. Debugging information */
- /* for this ARexx script will be printed to the global tracing console */
- /* if you have the following command at the start of your ARexx script */
-
- trace results
-
- /* And now we can get the source JPEG file name and destination image file name */
-
- arg source,dest
-
- say source
- say dest
-
- /* Finally set this script to use the PEGGER ARexx port */
-
- address 'PEGGER'
-
- /* Paste in any ARexx scripting you want to try here */
-